home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / macf / mger.dir / 00234.ls < prev    next >
Encoding:
Text File  |  1995-10-10  |  468 b   |  24 lines

  1. on mouseUp
  2.   global prev, gSound
  3.   if prev > 0 then
  4.     set prev to 0
  5.     set the visible of sprite 19 to 0
  6.     updateStage()
  7.     repeat with x = 13 to 18
  8.       set the visible of sprite x to 1
  9.     end repeat
  10.     repeat with i = 13 to 18
  11.       puppetSprite(i, 0)
  12.     end repeat
  13.     set the soundLevel to gSound
  14.     puppetSound("OPEN.AIF")
  15.     updateStage()
  16.     go(55)
  17.   else
  18.     repeat with i = 13 to 18
  19.       puppetSprite(i, 0)
  20.     end repeat
  21.     go(55)
  22.   end if
  23. end
  24.